UNPKG

cmte

Version:

Design by Committee™ except it's just you and LLMs

16 lines (13 loc) 246 B
```javascript /** * moduleA.js - A sample module for testing. */ export function greet(name) { return `Hello, ${name}!`; } export const farewell = "Goodbye!"; const internalHelper = () => { // Not exported return Math.random(); }; ```